Array that can be accesed using array['Name'] in C#
Posted
by Shahmir Javaid
on Stack Overflow
See other posts from Stack Overflow
or by Shahmir Javaid
Published on 2010-04-22T04:25:27Z
Indexed on
2010/04/22
4:33 UTC
Read the original article
Hit count: 152
c#
Can you do
array['Name'];
In C#
Rather than:
array[0];
I know you can do that in PHP but is there an equivelent for C#, although im thinking highley unlikely :(
© Stack Overflow or respective owner